C1.WPF.Document.4.6.2 Assembly / C1.WPF.Document Namespace / AsyncOperationProgressHandler<TResult,TProgress> Delegate
The result of the action.
The type of the progress data.
The asynchronous operation.
The progress information.

In This Topic
AsyncOperationProgressHandler<TResult,TProgress> Delegate
In This Topic
Represents a method that handles progress update events of an asynchronous operation that provides progress updates.
Syntax
'Declaration
 
Public Delegate Sub AsyncOperationProgressHandler
    (Of TResult,TProgress)( _
   ByVal asyncInfo As IAsyncOperationWithProgress(Of TResult,TProgress), _
   ByVal progressInfo As TProgress _
) 
 

Parameters

asyncInfo
The asynchronous operation.
progressInfo
The progress information.

Type Parameters

TResult
The result of the action.
TProgress
The type of the progress data.
See Also